home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacHack 2000
/
MacHack 2000.toast
/
pc
/
The Hacks
/
Softshoe
/
Lisa's Mac Parts
/
Windows
/
WindowDefaults.h
< prev
next >
Wrap
Text File
|
2000-06-23
|
461b
|
28 lines
// WindowDefaults.h
#ifndef WindowDefaults_h
#define WindowDefaults_h
#ifndef Rectangle_h
#include "Rectangle.h"
#endif
#include <QuickDraw.h>
class String255;
class WindowDefaults
{
public:
virtual GDHandle DefaultScreen() const;
virtual Rectangle DefaultPosition( GDHandle screen ) const = 0;
virtual void GetDefaultName( String255& ) const;
virtual uint32 DefaultIndex() const;
virtual bool DefaultVisibility() const;
};
#endif